home *** CD-ROM | disk | FTP | other *** search
-
- #include "includes.h"
- #include "installergui_data.h"
-
- /********************************************************************
- *
- * DESCRIPTION
- *
- * IN:
- * OUT:
- *
- */
-
- /********************************************************************
- *
- * STATIC
- *
- */
-
- /********************************************************************
- *
- * EXTERN
- *
- */
-
- /********************************************************************
- *
- * PUBLIC
- *
- */
-
- /********************************************************************
- *
- * CODE
- *
- */
-
- void __asm igui_NotifyModuleAction(register __a0 APTR application, register __a1 char *modulename)
- {
- char *modname = modulename,
- *wintitle = sav_StringF("Performing action on module '%s'", &modname);
-
- if (wintitle)
- {
- set(((struct Application *) application)->app_MainWindow, MUIA_Window_Title, wintitle);
- }
- }
-
-
-